100
How can I prevent showing the border for selected/highlight/hot items

with AxRibbon1 do
begin
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,$ffffff);
	with Items do
	begin
		Add('Item',Nil,Nil);
		Add('Item',Nil,Nil);
	end;
	Refresh();
end
99
How can I change the item's background/backcolor, when the cursor hovers it (hot)

with AxRibbon1 do
begin
	with Items do
	begin
		Add('Item',Nil,Nil).HotBackColor := $ff;
		Add('',Nil,Nil).ToString := 'Item[bghot=RGB(255,0,0)]';
	end;
	Refresh();
end
98
How can I change the item's background/backcolor

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		Add('Item',Nil,Nil).BackColor := $ff;
		Add('Item',Nil,Nil).BackColor := $1000000;
		Add('',Nil,Nil).ToString := 'Item[bg=RGB(255,0,0)]';
	end;
	Refresh();
end
97
How can I specify/assign the item's identifier

with AxRibbon1 do
begin
	Debug := True;
	with Items do
	begin
		Add('ID 1',TObject(0),TObject(1000));
		Add('ID 2',Nil,Nil).ID := 1001;
		Add('',Nil,Nil).ToString := 'ID 3[id=1002]';
	end;
	Refresh();
end
96
The popup is displayed using a fade/light-up effect. Is it possible to prevent that

with AxRibbon1 do
begin
	ShowPopupEffect := EXRIBBONLib.ShowPopupEffectEnum.exShowPopupDirect;
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
			PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
		end;
	end;
	Refresh();
end
95
How can I show semi-transparent popups

with AxRibbon1 do
begin
	PopupVisibility := 50;
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
			PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
		end;
	end;
	Refresh();
end
94
How can I change the popup's border

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
			PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
		end;
	end;
	Refresh();
end
93
How can I show a horizontal separator/line between groups (method 3,EBN color)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical) Or Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
				with Add('',Nil,Nil) do
				begin
					Enabled := False;
					BackColor := $1000000;
					ItemHeight := 8;
					CaptionWidth := 128;
				end;
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
92
How can I show a horizontal separator/line between groups (method 2,solid color)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical) Or Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
				with Add('',Nil,Nil) do
				begin
					Enabled := False;
					BackColor := $808080;
					ItemHeight := 8;
					CaptionWidth := 128;
				end;
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
91
How can I show a horizontal separator/line between groups (method 1,pattern)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical) Or Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
				with Add('',TObject(2),Nil) do
				begin
					GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
					with Items do
					begin
						with Add('',Nil,Nil) do
						begin
							Enabled := False;
							ItemHeight := 8;
							CaptionWidth := 128;
						end;
						BackgroundExt := 'none[(0,50%-1,100%,2),pattern=0x006,patterncolor=RGB(128,128,128)]';
					end;
				end;
				with Add('',Nil,Nil) do
				begin
					AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := -128;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
90
How can I show a vertical separator/line between groups (method 3,EBN color)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
				with Add('',Nil,Nil) do
				begin
					Enabled := False;
					BackColor := $1000000;
					ItemHeight := 96;
					CaptionWidth := 8;
				end;
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
89
How can I show a vertical separator/line between groups (method 2,solid color)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
				with Add('',Nil,Nil) do
				begin
					Enabled := False;
					BackColor := $808080;
					ItemHeight := 96;
					CaptionWidth := 8;
				end;
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
88
How can I show a vertical separator/line between groups (method 1,pattern)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
				with Add('',TObject(2),Nil) do
				begin
					GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
					with Items do
					begin
						with Add('',Nil,Nil) do
						begin
							Enabled := False;
							ItemHeight := 96;
							CaptionWidth := 8;
						end;
						BackgroundExt := 'none[(50%-1,0,2,100%),pattern=6,patterncolor=RGB(128,128,128)]';
					end;
				end;
				with Add('',Nil,Nil) do
				begin
					ItemHeight := 128;
					AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
					EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
					EditWidth := 32;
					EditValue := TObject(25);
				end;
			end;
		end;
	end;
	Refresh();
end
87
How can I show a pattern on the items

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
		end;
		BackColor := $ffffff;
		Padding := '2,2,2,12';
		BackgroundExt := 'root[pattern=0x006,patterncolor=RGB(128,128,128),frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off' + 
	' -2> clipboard </off></font></fgcolor>`,align=0x21])';
	end;
	Refresh();
end
86
How can I show a thick frame arround the items

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
		end;
		BackColor := $ffffff;
		Padding := '2,2,2,12';
		BackgroundExt := 'root[frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor>`,alig' + 
	'n=0x21])';
	end;
	Refresh();
end
85
How can I add some additional icons on the background

with AxRibbon1 do
begin
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := EXRIBBONLib.GroupPopupEnum.exGroupPopup;
			with Items do
			begin
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
		end;
		BackColor := $ffffff;
		Padding := '0,0,0,16';
		BackgroundExt := 'root[text=`<img>2</img><font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor><img>2</img>`,align=0x21]';
	end;
	Refresh();
end
84
How can I add some additional text on the background

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := EXRIBBONLib.GroupPopupEnum.exGroupPopup;
			with Items do
			begin
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
		end;
		BackColor := $ffffff;
		Padding := '0,0,0,8';
		BackgroundExt := 'root[text=`<font ;6><fgcolor 808080>clipboard`,align=0x21]';
	end;
	Refresh();
end
83
How can I disable incremental searching

with AxRibbon1 do
begin
	PopupIncrementalSearch := EXRIBBONLib.IncrementalSearchEnum.exNoIncrementalSearch;
	Items.ToString := 'Popup(Item 1,Item 2,Item 3)';
	Refresh();
end
82
How can I assign a tooltip to an item (method 2)

with AxRibbon1 do
begin
	ToString := 'ToolTip[id=10][ttp=This is a bit of text that should be shown when cursor hovers the item]';
end
81
How can I assign a tooltip to an item (method 1)

with AxRibbon1 do
begin
	Items.Add('ToolTip',Nil,Nil).Tooltip := 'This is a bit of text that should be shown when cursor hovers the item';
	Refresh();
end
80
How can I assign a spin field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Spin',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSpin;
			EditWidth := 16;
			EditValue := TObject(15);
			EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
			EditOption[EXRIBBONLib.EditOptionEnum.exEditMaxValue] := TObject(1000);
		end;
		with Add('Edit-Spin',Nil,Nil) do
		begin
			AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditSpin) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditText);
			EditWidth := -128;
			EditValue := TObject(15);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditMaxValue] := TObject(1000);
		end;
		with Add('Splider-Spin',Nil,Nil) do
		begin
			AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditSpin) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
			EditWidth := -128;
			EditValue := TObject(25);
			EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
		end;
	end;
	Refresh();
end
79
How can I assign a spin field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Spin[id=10][edittype=0x0200][edit=15][border=0][max=1000][editwidth=16],Edit-Spin[id=20][edittype=0x0201][edit=15][max=1000][edi' + 
	'twidth=-128],Splider-Spin[id=30][edittype=0x0203][edit=25][border=0][editwidth=-128]';
end
78
How can I add a vertical slider (method 2)

with AxRibbon1 do
begin
	ToString := 'Vertical[id=10][edittype=0x0403][edit=25][border=0][height=128]';
end
77
How can I add a vertical slider (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Vertical',Nil,Nil) do
		begin
			ItemHeight := 128;
			AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditVertical) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditSlider);
			EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
			EditWidth := 32;
			EditValue := TObject(25);
		end;
	end;
	Refresh();
end
76
How can I disable an editor (method 2)

with AxRibbon1 do
begin
	ToString := 'Disabled[id=10][dis][edittype=0x01][edit=text-box][editwidth=-128]';
end
75
How can I disable an editor (method 1)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Disabled',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditText;
			EditWidth := -128;
			EditValue := 'text-box';
			Enabled := False;
		end;
	end;
	Refresh();
end
74
How can I lock an editor (method 2)

with AxRibbon1 do
begin
	ToString := 'Locked[id=10][edittype=0x0101][edit=disabled text-box][editwidth=-128]';
end
73
How can I lock an editor (method 1)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Locked',Nil,Nil) do
		begin
			AllowEdit := Integer(EXRIBBONLib.AllowEditEnum.exItemEditReadOnly) Or Integer(EXRIBBONLib.AllowEditEnum.exItemEditText);
			EditWidth := -128;
			EditValue := 'disabled text-box';
		end;
	end;
	Refresh();
end
72
How can I assign a font field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Font',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditFont;
			EditWidth := -128;
			EditValue := 'Tahoma';
		end;
	end;
	Refresh();
end
71
How can I assign a font field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Font[id=10][edittype=0x07][edit=Tahoma][editwidth=-128]';
end
70
How can I assign a color field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Color',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditColor;
			EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
			EditWidth := -128;
			EditValue := TObject(255);
		end;
	end;
	Refresh();
end
69
How can I assign a color field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Color[id=10][edittype=0x06][edit=#FF0000][border=0][editwidth=-128]';
end
68
How can I assign a scrollbar field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('ScrollBar',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditScrollBar;
			EditWidth := -128;
			EditValue := '25';
		end;
	end;
	Refresh();
end
67
How can I assign a scrollbar field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'ScrollBar[id=10][edittype=0x05][edit=25][editwidth=-128]';
end
66
Is it possible to change the tooltip beging shown when I change the slider/scroll/progress value

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Progress',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditProgress;
			EditWidth := -128;
			EditValue := TObject(25);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditChangeToolTip] := '`Current value is: ` + value';
		end;
	end;
	Refresh();
end
65
How can I hide the tooltip beging shown when I change the slider/scroll/progress value

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Progress',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditProgress;
			EditWidth := -128;
			EditValue := TObject(25);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditChangeToolTip] := '';
		end;
	end;
	Refresh();
end
64
How can I assign a progress field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Progress',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditProgress;
			EditWidth := -128;
			EditValue := TObject(25);
		end;
	end;
	Refresh();
end
63
How can I assign a progress field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Progress[id=10][edittype=0x04][edit=25][editwidth=-128]';
end
62
How can I assign a slider field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Slider',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
			EditWidth := -128;
			EditValue := TObject(25);
		end;
		with Add('Slider',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditSlider;
			EditBorder := EXRIBBONLib.EditBorderEnum.exEditBorderNone;
			EditWidth := -128;
			EditOption[EXRIBBONLib.EditOptionEnum.exEditMinValue] := TObject(50);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditMaxValue] := TObject(450);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditTickStyle] := TObject(2);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditTickFrequency] := TObject(50);
			EditOption[EXRIBBONLib.EditOptionEnum.exEditTickLabel] := 'value = vmin ? ''<br><font ;6><b>''+value : ( value = vmax ? ''<br><font ;6><b>''+value : ( value = 200 ? ''<br><font ;6><b><fgcolor ' + 
	'FF0000>''+value : '''' ) )';
			EditValue := TObject(345);
		end;
	end;
	Refresh();
end
61
How can I assign a slider field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Slider[id=10][edittype=0x03][edit=25][editwidth=-128],Slider[id=20][edittype=0x03][edit=345][border=0][min=50][max=450][tick=2][' + 
	'freq=50][ticklabel=value = vmin ? ''<br><font ;6><b>''+value : ( value = vmax ? ''<br><font ;6><b>''+value : ( value = 200 ? ''<br><f' + 
	'ont ;6><b><fgcolor FF0000>''+value : '''' ) )][editwidth=-128]';
end
60
How can I assign a mask (time) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Time',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '99:00:00;;0;overtype,warning=Invalid character';
			EditValue := '123456';
		end;
	end;
	Refresh();
end
59
How can I assign a mask (time) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Time[id=10][edittype=0x02][edit=12:34:56][mask=99:00:00;;0;overtype,warning=Invalid character][editwidth=-128]';
end
58
How can I assign a mask (license key) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('License Key',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := 'AAAA-AAAA-AAAA-AAAA';
			EditValue := '1234';
		end;
	end;
	Refresh();
end
57
How can I assign a mask (license key) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'License Key[id=10][edittype=0x02][edit=1234-____-____-____][mask=AAAA-AAAA-AAAA-AAAA][editwidth=-128]';
end
56
How can I assign a mask (IP address) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('IP Address',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '{0,255}.{0,255}.{0,255}.{0,255}';
			EditValue := '1.2.3.4';
		end;
	end;
	Refresh();
end
55
How can I assign a mask (IP address) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'IP Address[id=10][edittype=0x02][edit=1.2.3.4][mask={0,255}.{0,255}.{0,255}.{0,255}][editwidth=-128]';
end
54
How can I assign a mask (phone) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Phone',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '!(9999) 000 000;;;empty,select=4,overtype,beep';
			EditValue := '0771638317';
		end;
	end;
	Refresh();
end
53
How can I assign a mask (phone) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Phone[id=10][edittype=0x02][edit=(0771) 638 317][mask=!(9999) 000 000;;;empty,select=4,overtype,beep][editwidth=-128]';
end
52
How can I assign a mask (date) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '`Date: `{1,12}/{1,31}/{1950,2050};;;select=1';
			EditValue := '2/15/2015';
		end;
		with Add('Date',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,overtype';
			EditValue := '2/15/2015';
		end;
	end;
	Refresh();
end
51
How can I assign a mask (date) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := '[id=10][edittype=0x02][edit=Date: 2/15/2015][mask=`Date: `{1,12}/{1,31}/{1950,2050};;;select=1][editwidth=-128],Date[id=20][edit' + 
	'type=0x02][edit=02/15/2015][mask=!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,ove' + 
	'rtype][editwidth=-128]';
end
50
How can I assign a mask (integer) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Integer',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := ';;;float,grouping=,digits=0';
			EditValue := TObject(1000);
		end;
		with Add('Integer-Grouping',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := ';;;float,decimal=,digits=0,select=1';
			EditValue := TObject(1000);
		end;
		with Add('Integer-In-Range',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := '{0,2050}';
			EditValue := TObject(1000);
		end;
	end;
	Refresh();
end
49
How can I assign a mask (integer) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Integer[id=10][edittype=0x02][edit=1000][mask=;;;float,grouping=,digits=0][editwidth=-128],Integer-Grouping[id=20][edittype=0x02' + 
	'][edit=1,000][mask=;;;float,decimal=,digits=0,select=1][editwidth=-128],Integer-In-Range[id=30][edittype=0x02][edit=1000][mask={' + 
	'0,2050}][editwidth=-128]';
end
48
How can I assign a mask field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Mask',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditMask;
			EditWidth := -128;
			EditMask := ';;;float,select=1';
			EditValue := TObject(1000);
		end;
	end;
	Refresh();
end
47
How can I assign a mask field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Text-Box[id=10][edittype=0x02][edit=1,000][mask=;;;float,select=1][editwidth=-128]';
end
46
How can I assign an edit / text-box to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Mask',Nil,Nil) do
		begin
			AllowEdit := EXRIBBONLib.AllowEditEnum.exItemEditText;
			EditValue := 'this is a text';
			EditWidth := -128;
		end;
	end;
	Refresh();
end
45
How can I assign an edit / text-box to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
procedure TWinForm1.AxRibbon1_EditChange(sender: System.Object; e: AxEXRIBBONLib._IRibbonEvents_EditChangeEvent);
begin
	with AxRibbon1 do
	begin
		OutputDebugString( e.itm );
	end
end;

with AxRibbon1 do
begin
	ToString := 'Text-Box[edit=this is a text][editwidth=-128]';
end
44
How can I display a tab into the ribbon (method 2)

with AxRibbon1 do
begin
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,$f0f0f0);
	with Items do
	begin
		ToString := '[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-1' + 
	'00]))';
		with Item[TObject(-10)].Items do
		begin
			Add('',TObject(0),TObject(0)).Padding := '8,0,0,0';
			with Add('New Page',Nil,Nil) do
			begin
				ToString := '[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][g' + 
	'roup=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))';
				Caption := 'Page<off -5><font ;5><b>1</b></font></off>';
				with Items.Item[TObject(0)].Items do
				begin
					with Add('add here fields for page 1',Nil,Nil) do
					begin
						ID := -1000;
						Enabled := False;
						BackColor := $ff;
					end;
				end;
			end;
			with Add('New Page',Nil,Nil) do
			begin
				ToString := '[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][g' + 
	'roup=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))';
				Caption := 'Page<off -5><font ;5><b>2</b></font></off>';
				with Items.Item[TObject(0)].Items do
				begin
					with Add('add here fields for page 2',Nil,Nil) do
					begin
						ID := -1001;
						Enabled := False;
						BackColor := $ff00;
					end;
				end;
			end;
			Add('',TObject(0),TObject(0)).Padding := '8,0,0,0';
		end;
	end;
	Refresh();
end
43
How can I add check-buttons to items, without showing the check-box (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('Check 1',Nil,Nil) do
				begin
					Check := True;
					Checked := True;
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				end;
				with Add('Check 2',Nil,Nil) do
				begin
					Check := True;
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				end;
				with Add('Check 3',Nil,Nil) do
				begin
					Check := True;
					Checked := True;
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				end;
			end;
		end;
	end;
	Refresh();
end
42
How can I add check-buttons to items, without showing the check-box (method 1)

with AxRibbon1 do
begin
	ToString := '[group=0x3](Check 1[chk=1][show=1],Check 2[chk=0][show=1],Check 3[chk=1][show=1])';
end
41
How can I add radio buttons to items, without showing the radio-buttons (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('Radio 1',Nil,TObject(1000)) do
				begin
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
					Radio := True;
					RadioGroup := 100;
				end;
				with Add('Radio 2',Nil,TObject(1001)) do
				begin
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
					Radio := True;
					RadioGroup := 100;
				end;
				with Add('Radio 2',Nil,TObject(1003)) do
				begin
					ShowCheckedAsSelected := EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
					Radio := True;
					RadioGroup := 100;
				end;
				Item[TObject(1000)].Checked := True;
			end;
		end;
	end;
	Refresh();
end
40
How can I add radio buttons to items, without showing the radio-buttons (method 1)

with AxRibbon1 do
begin
	ToString := '[group=0x3](Radio 1[rad=1][show=1][grp=100][id=1000],Radio 2[rad=0][show=1][grp=100][id=1001],Radio 2[rad=0][show=1][grp=100][id' + 
	'=1002])';
end
39
How can I add check-buttons to items (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('Check 1',Nil,Nil) do
				begin
					Check := True;
					Checked := True;
				end;
				Add('Check 2',Nil,Nil).Check := True;
			end;
		end;
	end;
	Refresh();
end
38
How can I add check-buttons to items (method 1)

with AxRibbon1 do
begin
	ToString := '[group=0x3](Check 1[chk=1],Check 2[chk=0])';
end
37
How can I add radio buttons to items (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := EXRIBBONLib.GroupPopupEnum.exGroupPopup;
			with Items do
			begin
				with Add('Radio 1',Nil,TObject(1000)) do
				begin
					Radio := True;
					RadioGroup := 100;
				end;
				with Add('Radio 2',Nil,TObject(1001)) do
				begin
					Radio := True;
					RadioGroup := 100;
				end;
				with Add('Radio 2',Nil,TObject(1003)) do
				begin
					Radio := True;
					RadioGroup := 100;
				end;
				Item[TObject(1000)].Checked := True;
			end;
		end;
	end;
	Refresh();
end
36
How can I add radio buttons to items (method 1)

with AxRibbon1 do
begin
	ToString := '[group=0x1](Radio 1[rad=1][grp=100][id=1000],Radio 2[rad=0][grp=100][id=1001],Radio 2[rad=0][grp=100][id=1002])';
end
35
How can I change the selection/highlighting color

with AxRibbon1 do
begin
	SelBackColor := Color.FromArgb(0,0,0);
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,$80);
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuHotForeColor,$ffffff);
	ToString := '[group=3](Item 1[chk],Item 2[chk])';
end
34
How can I prevent showing/hide the border on the selected/highlighted item

with AxRibbon1 do
begin
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,SelBackColor);
	ToString := 'Item 1,Item 2';
end
33
How can I display a tab into the ribbon (method 1)

with AxRibbon1 do
begin
	set_Background(EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,$f0f0f0);
	ToString := '[group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03]([id=50][pad=8,0,0,0],Page<off -5><font ;5><b>1</b></font></off>[id=60][typ' + 
	'=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group' + 
	'=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=80],add here fields for page 1[id=-1000][dis])),Page<off -5><font ;' + 
	'5><b>2</b></font></off>[id=100][typ=2][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(24' + 
	'0,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=120],add here fields for page 2[id=-100' + 
	'1][dis])),[id=140][pad=8,0,0,0]),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100]))';
	with Items.Item[TObject(-1000)] do
	begin
		BackColor := $ff;
	end;
	with Items.Item[TObject(-1001)] do
	begin
		BackColor := $ff00;
	end;
end
32
How do I prevent highlighting the item (method 2.b)

with AxRibbon1 do
begin
	with Items do
	begin
		Add('No highlight',Nil,Nil).Enabled := False;
		Add('Item 2',Nil,Nil);
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
31
How do I prevent highlighting the item (method 2.a)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('No highlight',TObject(2),Nil) do
		begin
			Items.Add('',Nil,Nil);
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			ShowPopupArrow := False;
		end;
		Add('Item 2',Nil,Nil);
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
30
How do I prevent highlighting the item (method 1.b)

with AxRibbon1 do
begin
	Items.ToString := 'No highlight[dis],Item 2,Item 3';
	Refresh();
end
29
How do I prevent highlighting the item (method 1.a)

with AxRibbon1 do
begin
	Items.ToString := 'No highlight[group=0x3][arrow=0]([]),Item 2,Item 3';
	Refresh();
end
28
How can I can I assign pictures or images for the item (method 2)

with AxRibbon1 do
begin
	set_HTMLPicture('pic1','c:\exontrol\images\zipdisk.gif');
	set_HTMLPicture('pic2','c:\exontrol\images\auction.gif');
	with Items do
	begin
		Add('Item',Nil,Nil).HTMLImage := 'pic1';
		Add('Item',Nil,Nil).HTMLImage := 'pic2';
		Add('',TObject(1),Nil);
		Add('Item <img>pic1</img>',Nil,Nil);
		Add('Item <img>pic2</img>',Nil,Nil);
		Add('',TObject(1),Nil);
		Add('<img>pic1</img> Item <img>pic2</img>',Nil,Nil);
	end;
	Refresh();
end
27
How can I can I assign pictures or images for the item (method 1)

with AxRibbon1 do
begin
	set_HTMLPicture('pic1','c:\exontrol\images\zipdisk.gif');
	set_HTMLPicture('pic2','c:\exontrol\images\auction.gif');
	ToString := 'Item[himg=pic1],Item[himg=pic2],[sep],Item <img>pic1</img>,Item <img>pic2</img>,[sep],<img>pic1</img> Item <img>pic2</img>';
end
26
How can I can I assign icons for the item (method 2)

with AxRibbon1 do
begin
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	with Items do
	begin
		Add('Item',Nil,Nil).Image := 1;
		Add('Item',Nil,Nil).Image := 2;
		Add('',TObject(1),Nil);
		Add('Item <img>1</img>',Nil,Nil);
		Add('Item <img>2</img>',Nil,Nil);
		Add('',TObject(1),Nil);
		Add('Item <img>1</img>',Nil,Nil).Image := 1;
	end;
	Refresh();
end
25
How can I can I assign icons for the item (method 1)

with AxRibbon1 do
begin
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	Items.ToString := 'Item[img=1],Item[img=2],[sep],Item <img>1</img>,Item <img>2</img>,[sep],Item <img>1</img>[img=1]';
	Refresh();
end
24
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 2)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		Padding := '2,2,2,2';
		BackColor := $1000000;
		Add('Item 1',Nil,Nil);
		Add('Item 2',Nil,Nil);
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
23
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 1)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	Items.ToString := '[itemsbg=0x1000000][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)';
	Refresh();
end
22
How can I change the background color for a collection of items/group (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		Padding := '2,2,2,2';
		BackColor := $ff;
		Add('Item 1',Nil,Nil);
		Add('Item 2',Nil,Nil);
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
21
How can I change the background color for a collection of items/group (method 1)

with AxRibbon1 do
begin
	Items.ToString := '[itemsbg=RGB(255,0,0)][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)';
	Refresh();
end
20
How can I change the visual appearance / background color (EBN) for a specified item (method 2)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		Add('Item 1',Nil,Nil);
		Add('Item 2',Nil,Nil).BackColor := $1000000;
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
19
How can I change the visual appearance / background color (EBN) for a specified item (method 1)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	Items.ToString := 'Item 1,Item 2[bg=0x1000000],Item 3';
	Refresh();
end
18
How can I change the background color for a specified item (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		Add('Item 1',Nil,Nil);
		Add('Item 2',Nil,Nil).BackColor := $ff;
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
17
How can I change the background color for a specified item (method 1)

with AxRibbon1 do
begin
	Items.ToString := 'Item 1,Item 2[bg=RGB(255,0,0)],Item 3';
	Refresh();
end
16
How can I change the visual appearance (EBN) of the floating popups (method 2, applies to single popup)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			PopupAppearance := EXRIBBONLib.AppearanceEnum($1000000);
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
		end;
	end;
	Refresh();
end
15
How can I change the visual appearance (EBN) of the floating popups (method 1, applies to all)

with AxRibbon1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	Items.ToString := 'Popup(Item 1,Item 2,Item 3)';
	PopupAppearance := EXRIBBONLib.AppearanceEnum($1000000);
	Refresh();
end
14
How can I change the visual appearance of the floating popups (method 2, applies to single popup)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
		end;
	end;
	Refresh();
end
13
How can I change the visual appearance of the floating popups (method 1, applies to all)

with AxRibbon1 do
begin
	Items.ToString := 'Popup(Item 1,Item 2,Item 3)';
	PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
	Refresh();
end
12
How do I add a popup or a sub-menu so it show when cursor hovers it (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Popup',TObject(2),Nil).Items do
		begin
			Add('Item 1',Nil,Nil);
			Add('Item 2',Nil,Nil);
			Add('Item 3',Nil,Nil);
		end;
	end;
	Refresh();
end
11
How do I add a popup or a sub-menu so it show when cursor hovers it (method 1)

with AxRibbon1 do
begin
	Items.ToString := 'Popup(Item 1,Item 2,Item 3)';
	Refresh();
end
10
How can I arrange the items by grouping (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
			with Items do
			begin
				with Add('Horizontal',TObject(2),Nil) do
				begin
					GroupPopup := EXRIBBONLib.GroupPopupEnum.exGroupPopup;
					with Items do
					begin
						Add('Sub-Item <b>A</b>',Nil,Nil);
						Add('Sub-Item <b>B</b>',Nil,Nil);
						Add('Sub-Item <b>C</b>',Nil,Nil);
					end;
				end;
				Add('',Nil,Nil).CaptionWidth := 16;
				with Add('Vertical',TObject(2),Nil) do
				begin
					Alignment := EXRIBBONLib.AlignmentEnum.exCenter;
					GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
					with Items do
					begin
						Add('Sub-Item <b>A</b>',Nil,Nil);
						Add('Sub-Item <b>B</b>',Nil,Nil);
						Add('Sub-Item <b>C</b>',Nil,Nil);
					end;
				end;
				Add('',Nil,Nil).CaptionWidth := 16;
				with Add('Popup',TObject(2),Nil) do
				begin
					with Items do
					begin
						Add('Sub-Item <b>A</b>',Nil,Nil);
						Add('Sub-Item <b>B</b>',Nil,Nil);
						Add('Sub-Item <b>C</b>',Nil,Nil);
					end;
				end;
			end;
		end;
	end;
	Refresh();
end
9
How can I arrange the items by grouping (method 1)

with AxRibbon1 do
begin
	Items.ToString := '[group=0x03](Horizontal[group=0x01](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Vertical[group=0x01' + 
	'01][align=1](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Popup(Sub-Item <b>A</b>,Sub-Item <b>B</b>,' + 
	'Sub-Item <b>C</b>),[captionwidth=160])';
	Refresh();
end
8
How can I arrange some items vertically, and some horizontally (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			with Items do
			begin
				Add('1',Nil,Nil);
				Add('2',Nil,Nil);
				Add('3',Nil,Nil);
			end;
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
		end;
		with Add('',TObject(2),Nil) do
		begin
			with Items do
			begin
				Add('4',Nil,Nil);
				Add('5',Nil,Nil);
				Add('6',Nil,Nil);
			end;
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
		end;
		with Add('',TObject(2),Nil) do
		begin
			with Items do
			begin
				Add('7',Nil,Nil);
				Add('8',Nil,Nil);
				Add('9',Nil,Nil);
			end;
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
		end;
	end;
	Refresh();
end
7
How can I arrange some items vertically, and some horizontally (method 1)

with AxRibbon1 do
begin
	Items.ToString := '[group=3](1,2,3),[group=3](4,5,6),[group=3](7,8,9)';
	Refresh();
end
6
How can I assign multiple-lines to an item (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			with Items do
			begin
				Add('Item 1',Nil,Nil).Caption := 'Item <br><c><b>1';
				Add('Item 2',Nil,Nil).Caption := 'Item <br><c><b>2';
				Add('Item 3',Nil,Nil).Caption := 'Item <br><c><b>3';
			end;
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
		end;
	end;
	Refresh();
end
5
How can I assign multiple-lines to an item (method 1)

with AxRibbon1 do
begin
	Items.ToString := '[group=3](Item <br><c><b>1,Item <br><c><b>2,Item <br><c><b>3)';
	Refresh();
end
4
How can I add new items arranged horizontally to the ribbon control (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('',TObject(2),Nil) do
		begin
			with Items do
			begin
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
			GroupPopup := Integer(EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame) Or Integer(EXRIBBONLib.GroupPopupEnum.exGroupPopup);
		end;
	end;
	Refresh();
end
3
How can I add new items arranged horizontally to the ribbon control (method 1)

with AxRibbon1 do
begin
	Items.ToString := '[group=3](Item 1,Item 2,Item 3)';
	Refresh();
end
2
How can I add new items to the ribbon control (method 2)

with AxRibbon1 do
begin
	with Items do
	begin
		Add('Item 1',Nil,Nil);
		Add('Item 2',Nil,Nil);
		Add('Item 3',Nil,Nil);
	end;
	Refresh();
end
1
How can I add new items to the ribbon control (method 1)

with AxRibbon1 do
begin
	Items.ToString := 'Item 1,Item 2,Item 3';
	Refresh();
end